home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / VELENG10.ZIP / MAKEFILE.WCC < prev    next >
Text File  |  1997-07-27  |  1KB  |  45 lines

  1. #
  2. #              Makefile for Velena Engine (Watcom C/C++ compilers)
  3. #
  4.  
  5. ##########################
  6. ## User settable macros ##
  7. ##########################
  8.  
  9. Compiler = wcc386
  10. Compiler_Options = /5r /olrt
  11.  
  12. Linker_options   = Option Stack=49152
  13.  
  14. System       = dos4g
  15.  
  16. Exe_file     = veleng.exe
  17.  
  18. Object_files =  connect4.obj  &
  19.                 error.obj     &
  20.                 playgame.obj  &
  21.                 ia_main.obj   &
  22.                 evaluate.obj  &
  23.                 adjmtrx.obj   &
  24.                 pbsolver.obj  &
  25.                 pnsearch.obj  &
  26.                 bintree.obj   &
  27.                 heurist.obj   &
  28.                 database.obj  &
  29.                 wc.obj        &
  30.                 buildob.obj   &
  31.                 dummy.obj     &
  32.                 cmdline.obj
  33.  
  34. ####################
  35. ## Makefile rules ##
  36. ####################
  37.  
  38. $(Exe_file): $(Object_files)
  39.              *wlink system $(System) $(Linker_Options) name $(Exe_file) &
  40.                     file {$(Object_files)}
  41.  
  42. .c.obj:
  43.         *$(Compiler) $(Compiler_Options) $<
  44.  
  45.